home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / util / misc / VMMInformer1_0.lha / VMMInformer1.0 / Prefs / VMMInformer.prefs < prev   
Text File  |  1995-05-15  |  1KB  |  60 lines

  1. // VMMInformer.prefs DON'T EDIT OR MOVE THIS LINE
  2. BEGIN TASK/WINDOW
  3.   VERSION  = 1              // !!! DO NOT EDIT THIS LINE !!!
  4.   REVISION = 0              // !!! DO NOT EDIT THIS LINE !!!
  5.  
  6.   PRIORITY = 1
  7.  
  8.   LEFT  = 0
  9.   TOP   = 0
  10.   WIDTH = 200
  11.  
  12.   ZOOMED = TRUE
  13.   ZOOMED_LEFT = 0
  14.   ZOOMED_TOP  = 0
  15.  
  16.   BACKFILLCOLOR = 0
  17.   TEXTCOLOR     = 1
  18.   PANELCOLOR    = 3
  19. END
  20.  
  21. // RPN for calculations
  22. BEGIN VARIABLES
  23.   SYNCHRONIZE = TRUE        // DON'T EDIT THIS LINE
  24.   SECONDS = 1
  25.   MICROS  = 0
  26.  
  27.   DEFINE VMFreeK = VMFree 1024 /
  28.   DEFINE PUBLIC_FAST_FreeK = PUBLIC_FAST_Free 1024 /
  29.   DEFINE CHIP_FreeK = CHIP_Free 1024 /
  30.  
  31.   DEFINE Hours   = CurrentSeconds 86400 % 3600 /
  32.   DEFINE Minutes = CurrentSeconds 86400 % 3600 % 60 /
  33.   DEFINE Seconds = CurrentSeconds 60 %
  34.  
  35.   ARRAYFaults = Faults
  36.   DEFINE Pagefaults_per_update = ARRAYFaults(0) ARRAYFaults(-1) -
  37. END
  38.  
  39. BEGIN STRINGS
  40.   ZOOMTITLE = "VM: %5ld K, Chip: %4ld K, Fast: %5ld K  %2.2ld:%2.2ld:%2.2ld", VMFreeK, CHIP_FreeK, PUBLIC_FAST_FreeK, Hours, Minutes, Seconds
  41.  
  42.   TEXT = "Virtual memory free:", VMFree
  43.   TEXT = "Public Fast Mem free:", PUBLIC_FAST_Free
  44.   TEXT = "Number of pagefaults:", Faults
  45.   TEXT = "Number of pages read:", PagesRead
  46.   TEXT = "Number of pages written:", PagesWritten
  47.   TEXT = "Number of page frames:", NumFrames
  48.   TEXT = "Pages used on device:", PagesUsed
  49. END
  50.  
  51. BEGIN GRAPHIC
  52.   AUTOSCALE = TRUE
  53.   SHIFT = 1
  54.   COLOR = 1
  55.   EXCEED_COLOR = 7
  56.  
  57.   GRAPHIC = Pagefaults_per_update
  58.   GRAPHIC_HEIGHT = 40
  59. END
  60.